home *** CD-ROM | disk | FTP | other *** search
/ Giga Games 1 / Giga Games.iso / net / go / prog / sgf2mi13.taz / sgf2mi13 / latex < prev    next >
Encoding:
Text File  |  1993-02-16  |  614 b   |  34 lines

  1. #! /bin/sh
  2. #
  3. # Front-end for LaTeX
  4. #
  5. # We add the directory where the tfm files for the Go diagram font
  6. # live to the systems' TEXFONTS path.
  7. #
  8. # Author: Jan van der Steen
  9. # Date    : Fri Aug 30 11:58:52 MET DST 1991
  10.  
  11. usage="latex file.tex"
  12.  
  13. #
  14. # Where is the real LaTeX program installed?
  15. #
  16. LaTeX=/usr/local/TeX/bin/latex
  17.  
  18. #
  19. # Where does LaTeX look for the systems tfm files?
  20. #
  21. SYSTFM=".:/usr/local/TeX/lib/tfm:/usr/local/TeX/lib/ps_tfm"
  22.  
  23. #
  24. # Where are the Go diagram font tfm files?
  25. #
  26. GOTFM=/ufs/jansteen/games2/go/TeX/Hanna/Go_tfm
  27.  
  28. TEXFONTS=${SYSTFM}:${GOTFM}; export TEXFONTS
  29.  
  30. #
  31. # Execute LaTeX
  32. #
  33. exec ${LaTeX} $*
  34.